home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM6.BAT < prev    next >
DOS Batch File  |  1997-05-22  |  258b  |  15 lines

  1. @echo off
  2. : test iFTP example script exam6.ftp in a batch file to catch the halt
  3. : errorlevel
  4.  
  5.   iftp /run exam6
  6.   if errorlevel 1 goto error
  7.   echo batch file successful!
  8.   goto end
  9.  
  10. :error
  11.   echo error with iFTP script exam6
  12.   goto end
  13.  
  14. :end
  15.